home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 46
/
PC Gamer IT CD 46 2-2.iso
/
Nba
/
NBA2000.exe
/
CABFILE
/
IDR_CABFILE
/
Data
/
2DScript
/
INFOBAR.UI
< prev
next >
Wrap
Text File
|
1999-06-16
|
4KB
|
191 lines
"2D\Overlays\Info\InfoBar"
//********************************
// Data Container
//********************************
DataContainer {
Int "InformationBarCurrentScreen" {
RadioGroup "InformationBar";
};
Int "PauseQuit" {InitialValue 0;};
};
//********************************
// Fonts
//********************************
Font "InfoBarDisabledFont" {
Filename "fontdis";
Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Kerning 1;
VerticalKerning 12;
};
Font "InfoBarEnabledFont" {
Filename "fontnorm";
Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Kerning 1;
VerticalKerning 12;
};
Font "InfoBarFocusedFont" {
Filename "fontend";
Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Kerning 1;
VerticalKerning 12;
};
Font "InfoBarArmedFont" {
Filename "fontend";
Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Kerning 1;
VerticalKerning 12;
};
//********************************
// Images
//********************************
Image "InfoBar" {
Filename "Infobar";
position [-30,0];
};
Image "EnabledBoxScore" {
Filename "firbute";
};
Image "ArmedBoxScore" {
Filename "firbutp";
};
Image "FocusedBoxScore" {
Filename "firbutf";
};
Image "EnabledShotChart" {
Filename "midbute";
};
Image "ArmedShotChart" {
Filename "midbutp";
};
Image "FocusedShotChart" {
Filename "midbutf";
};
Image "EnabledGameDetails" {
Filename "endbute";
};
Image "ArmedGameDetails" {
Filename "endbutp";
};
Image "FocusedGameDetails" {
Filename "endbutf";
};
//********************************
// Styles
//********************************
Style "InfoBar" {
Image "InfoBar";
};
ButtonStyle "InformationBarBoxScoreButtonStyle" {
Enabled Image "EnabledBoxScore";
Armed Image "ArmedBoxScore";
Focused Image "FocusedBoxScore";
Enabled Font "InfoBarEnabledFont";
Armed Font "InfoBarArmedFont";
// Focused Font "InfoBarArmedFont";
Disabled Font "InfoBarDisabledFont";
};
ButtonStyle "InformationBarShotChartButtonStyle" {
Enabled Image "EnabledShotChart";
Armed Image "ArmedShotChart";
Focused Image "FocusedShotChart";
Disabled Font "InfoBarDisabledFont";
Enabled Font "InfoBarEnabledFont";
Armed Font "InfoBarArmedFont";
// Focused Font "InfoBarEnabledFont";
};
ButtonStyle "InformationBarGameDetailsButtonStyle" {
Enabled Image "EnabledGameDetails";
Armed Image "ArmedGameDetails";
Focused Image "FocusedGameDetails";
Enabled Font "InfoBarEnabledFont";
Armed Font "InfoBarArmedFont";
// Focused Font "InfoBarEnabledFont";
};
//********************************
// Buttons
//********************************
CheckButton "InformationBarBoxScore" {
ButtonStyle "InformationBarBoxScoreButtonStyle";
Disabled;
String "BOX SCORE" {
Position [60,10];
Justify CenterCenter;
};
Position [0, 0];
};
CheckButton "InformationBarShotChart" {
ButtonStyle "InformationBarShotChartButtonStyle";
Disabled;
String "SHOT CHART" {
Position [65,10];
Justify CenterCenter;
};
Position [117, 0];
};
CheckButton "InformationBarGameDetails" {
ButtonStyle "InformationBarGameDetailsButtonStyle";
String "GAME DETAILS" {
Position [68,10];
Justify CenterCenter;
};
Position [246, 0];
};
//********************************
// Groups
//********************************
Group "InformationStartingPoint" {
Style "InfoBar";
Root;
// Position [30, 0];
CenterCenter Position [-290, -240];
Children {
MenuGroup "InformationNavBar";
};
Activate Action {SetCurrOverviewHelp "PausedGame_Overview";};
Activate Action {SetData "InformationBarCurrentScreen" 2;};
};
MenuGroup "InformationNavBar" {
Children {
Group "InformationDummyGroup1";
Group "InformationDummyGroup2";
Include "2DScript\Info\GameDet";
RadioGroup "InformationBar";
};
};
RadioGroup "InformationBar" {
Position [169, 50];
Children {
CheckButton "InformationBarBoxScore";
CheckButton "InformationBarShotChart";
CheckButton "InformationBarGameDetails";
};
};